home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Weubblers handler.adf / Docs / AMIGADOS / ActionRawRead.Doc < prev    next >
Text File  |  1989-01-08  |  624b  |  30 lines

  1.  
  2. ActionRawRead
  3.  
  4.  
  5. Name:
  6.         ActionRawRead - lies einen Rohtrack von Disk
  7.  
  8. Ergebnis in MotorMsg->Error:
  9.          0 wenn Operation fehlerfrei verlaufen
  10.         <0 sonst
  11.  
  12. Beschreibung:
  13.         ActionRawRead liest einen Rohtrack der Laenge tracklen Words ohne
  14.         Decodierung von Drive drive, Track track, Head head nach Buffer.
  15.  
  16. Beispiel:
  17.         InitMotor();
  18.  
  19.         MotorMsg->Action=ActionRawRead;
  20.         MotorMsg->Drive=drive;
  21.         MotorMsg->Track=track;
  22.         MotorMsg->Head=head;
  23.         MotorMsg->Destination=Buffer;
  24.         MotorMsg->NumSecs=tracklen;
  25.  
  26.         DoAction();
  27.  
  28. Bekannte Fehler:
  29.         Keine
  30.